From cea4b80096526a6e878e0752ea302e73f32b0551 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 23 Jun 2012 13:07:47 -0400 Subject: [PATCH] Fix a compiler warning This was introduced in the previous commit. --- gtk/gtknotebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index cf077c8e79..54c079d2da 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4149,7 +4149,7 @@ focus_tabs_in (GtkNotebook *notebook) if (priv->show_tabs && priv->cur_page) { gtk_widget_grab_focus (GTK_WIDGET (notebook)); - gtk_notebook_set_focus_child (notebook, NULL); + gtk_notebook_set_focus_child (GTK_CONTAINER (notebook), NULL); gtk_notebook_switch_focus_tab (notebook, g_list_find (priv->children, priv->cur_page)); -- 2.30.2